home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / include / linux / input.h < prev    next >
C/C++ Source or Header  |  2008-10-24  |  25KB  |  945 lines

  1. #ifndef _INPUT_H
  2. #define _INPUT_H
  3.  
  4. /*
  5.  * Copyright (c) 1999-2002 Vojtech Pavlik
  6.  *
  7.  * This program is free software; you can redistribute it and/or modify it
  8.  * under the terms of the GNU General Public License version 2 as published by
  9.  * the Free Software Foundation.
  10.  */
  11.  
  12. #include <sys/time.h>
  13. #include <sys/ioctl.h>
  14. #include <sys/types.h>
  15. #include <asm/types.h>
  16.  
  17. /*
  18.  * The event structure itself
  19.  */
  20.  
  21. struct input_event {
  22.     struct timeval time;
  23.     __u16 type;
  24.     __u16 code;
  25.     __s32 value;
  26. };
  27.  
  28. /*
  29.  * Protocol version.
  30.  */
  31.  
  32. #define EV_VERSION        0x010000
  33.  
  34. /*
  35.  * IOCTLs (0x00 - 0x7f)
  36.  */
  37.  
  38. struct input_id {
  39.     __u16 bustype;
  40.     __u16 vendor;
  41.     __u16 product;
  42.     __u16 version;
  43. };
  44.  
  45. struct input_absinfo {
  46.     __s32 value;
  47.     __s32 minimum;
  48.     __s32 maximum;
  49.     __s32 fuzz;
  50.     __s32 flat;
  51. };
  52.  
  53. #define EVIOCGVERSION        _IOR('E', 0x01, int)            /* get driver version */
  54. #define EVIOCGID        _IOR('E', 0x02, struct input_id)    /* get device ID */
  55. #define EVIOCGREP        _IOR('E', 0x03, int[2])            /* get repeat settings */
  56. #define EVIOCSREP        _IOW('E', 0x03, int[2])            /* set repeat settings */
  57. #define EVIOCGKEYCODE        _IOR('E', 0x04, int[2])            /* get keycode */
  58. #define EVIOCSKEYCODE        _IOW('E', 0x04, int[2])            /* set keycode */
  59.  
  60. #define EVIOCGNAME(len)        _IOC(_IOC_READ, 'E', 0x06, len)        /* get device name */
  61. #define EVIOCGPHYS(len)        _IOC(_IOC_READ, 'E', 0x07, len)        /* get physical location */
  62. #define EVIOCGUNIQ(len)        _IOC(_IOC_READ, 'E', 0x08, len)        /* get unique identifier */
  63.  
  64. #define EVIOCGKEY(len)        _IOC(_IOC_READ, 'E', 0x18, len)        /* get global keystate */
  65. #define EVIOCGLED(len)        _IOC(_IOC_READ, 'E', 0x19, len)        /* get all LEDs */
  66. #define EVIOCGSND(len)        _IOC(_IOC_READ, 'E', 0x1a, len)        /* get all sounds status */
  67. #define EVIOCGSW(len)        _IOC(_IOC_READ, 'E', 0x1b, len)        /* get all switch states */
  68.  
  69. #define EVIOCGBIT(ev,len)    _IOC(_IOC_READ, 'E', 0x20 + ev, len)    /* get event bits */
  70. #define EVIOCGABS(abs)        _IOR('E', 0x40 + abs, struct input_absinfo)        /* get abs value/limits */
  71. #define EVIOCSABS(abs)        _IOW('E', 0xc0 + abs, struct input_absinfo)        /* set abs value/limits */
  72.  
  73. #define EVIOCSFF        _IOC(_IOC_WRITE, 'E', 0x80, sizeof(struct ff_effect))    /* send a force effect to a force feedback device */
  74. #define EVIOCRMFF        _IOW('E', 0x81, int)            /* Erase a force effect */
  75. #define EVIOCGEFFECTS        _IOR('E', 0x84, int)            /* Report number of effects playable at the same time */
  76.  
  77. #define EVIOCGRAB        _IOW('E', 0x90, int)            /* Grab/Release device */
  78.  
  79. /*
  80.  * Event types
  81.  */
  82.  
  83. #define EV_SYN            0x00
  84. #define EV_KEY            0x01
  85. #define EV_REL            0x02
  86. #define EV_ABS            0x03
  87. #define EV_MSC            0x04
  88. #define EV_SW            0x05
  89. #define EV_LED            0x11
  90. #define EV_SND            0x12
  91. #define EV_REP            0x14
  92. #define EV_FF            0x15
  93. #define EV_PWR            0x16
  94. #define EV_FF_STATUS        0x17
  95. #define EV_MAX            0x1f
  96. #define EV_CNT            (EV_MAX+1)
  97.  
  98. /*
  99.  * Synchronization events.
  100.  */
  101.  
  102. #define SYN_REPORT        0
  103. #define SYN_CONFIG        1
  104.  
  105. /*
  106.  * Keys and buttons
  107.  *
  108.  * Most of the keys/buttons are modeled after USB HUT 1.12
  109.  * (see http://www.usb.org/developers/hidpage).
  110.  * Abbreviations in the comments:
  111.  * AC - Application Control
  112.  * AL - Application Launch Button
  113.  * SC - System Control
  114.  */
  115.  
  116. #define KEY_RESERVED        0
  117. #define KEY_ESC            1
  118. #define KEY_1            2
  119. #define KEY_2            3
  120. #define KEY_3            4
  121. #define KEY_4            5
  122. #define KEY_5            6
  123. #define KEY_6            7
  124. #define KEY_7            8
  125. #define KEY_8            9
  126. #define KEY_9            10
  127. #define KEY_0            11
  128. #define KEY_MINUS        12
  129. #define KEY_EQUAL        13
  130. #define KEY_BACKSPACE        14
  131. #define KEY_TAB            15
  132. #define KEY_Q            16
  133. #define KEY_W            17
  134. #define KEY_E            18
  135. #define KEY_R            19
  136. #define KEY_T            20
  137. #define KEY_Y            21
  138. #define KEY_U            22
  139. #define KEY_I            23
  140. #define KEY_O            24
  141. #define KEY_P            25
  142. #define KEY_LEFTBRACE        26
  143. #define KEY_RIGHTBRACE        27
  144. #define KEY_ENTER        28
  145. #define KEY_LEFTCTRL        29
  146. #define KEY_A            30
  147. #define KEY_S            31
  148. #define KEY_D            32
  149. #define KEY_F            33
  150. #define KEY_G            34
  151. #define KEY_H            35
  152. #define KEY_J            36
  153. #define KEY_K            37
  154. #define KEY_L            38
  155. #define KEY_SEMICOLON        39
  156. #define KEY_APOSTROPHE        40
  157. #define KEY_GRAVE        41
  158. #define KEY_LEFTSHIFT        42
  159. #define KEY_BACKSLASH        43
  160. #define KEY_Z            44
  161. #define KEY_X            45
  162. #define KEY_C            46
  163. #define KEY_V            47
  164. #define KEY_B            48
  165. #define KEY_N            49
  166. #define KEY_M            50
  167. #define KEY_COMMA        51
  168. #define KEY_DOT            52
  169. #define KEY_SLASH        53
  170. #define KEY_RIGHTSHIFT        54
  171. #define KEY_KPASTERISK        55
  172. #define KEY_LEFTALT        56
  173. #define KEY_SPACE        57
  174. #define KEY_CAPSLOCK        58
  175. #define KEY_F1            59
  176. #define KEY_F2            60
  177. #define KEY_F3            61
  178. #define KEY_F4            62
  179. #define KEY_F5            63
  180. #define KEY_F6            64
  181. #define KEY_F7            65
  182. #define KEY_F8            66
  183. #define KEY_F9            67
  184. #define KEY_F10            68
  185. #define KEY_NUMLOCK        69
  186. #define KEY_SCROLLLOCK        70
  187. #define KEY_KP7            71
  188. #define KEY_KP8            72
  189. #define KEY_KP9            73
  190. #define KEY_KPMINUS        74
  191. #define KEY_KP4            75
  192. #define KEY_KP5            76
  193. #define KEY_KP6            77
  194. #define KEY_KPPLUS        78
  195. #define KEY_KP1            79
  196. #define KEY_KP2            80
  197. #define KEY_KP3            81
  198. #define KEY_KP0            82
  199. #define KEY_KPDOT        83
  200.  
  201. #define KEY_ZENKAKUHANKAKU    85
  202. #define KEY_102ND        86
  203. #define KEY_F11            87
  204. #define KEY_F12            88
  205. #define KEY_RO            89
  206. #define KEY_KATAKANA        90
  207. #define KEY_HIRAGANA        91
  208. #define KEY_HENKAN        92
  209. #define KEY_KATAKANAHIRAGANA    93
  210. #define KEY_MUHENKAN        94
  211. #define KEY_KPJPCOMMA        95
  212. #define KEY_KPENTER        96
  213. #define KEY_RIGHTCTRL        97
  214. #define KEY_KPSLASH        98
  215. #define KEY_SYSRQ        99
  216. #define KEY_RIGHTALT        100
  217. #define KEY_LINEFEED        101
  218. #define KEY_HOME        102
  219. #define KEY_UP            103
  220. #define KEY_PAGEUP        104
  221. #define KEY_LEFT        105
  222. #define KEY_RIGHT        106
  223. #define KEY_END            107
  224. #define KEY_DOWN        108
  225. #define KEY_PAGEDOWN        109
  226. #define KEY_INSERT        110
  227. #define KEY_DELETE        111
  228. #define KEY_MACRO        112
  229. #define KEY_MUTE        113
  230. #define KEY_VOLUMEDOWN        114
  231. #define KEY_VOLUMEUP        115
  232. #define KEY_POWER        116    /* SC System Power Down */
  233. #define KEY_KPEQUAL        117
  234. #define KEY_KPPLUSMINUS        118
  235. #define KEY_PAUSE        119
  236.  
  237. #define KEY_KPCOMMA        121
  238. #define KEY_HANGEUL        122
  239. #define KEY_HANGUEL        KEY_HANGEUL
  240. #define KEY_HANJA        123
  241. #define KEY_YEN            124
  242. #define KEY_LEFTMETA        125
  243. #define KEY_RIGHTMETA        126
  244. #define KEY_COMPOSE        127
  245.  
  246. #define KEY_STOP        128    /* AC Stop */
  247. #define KEY_AGAIN        129
  248. #define KEY_PROPS        130    /* AC Properties */
  249. #define KEY_UNDO        131    /* AC Undo */
  250. #define KEY_FRONT        132
  251. #define KEY_COPY        133    /* AC Copy */
  252. #define KEY_OPEN        134    /* AC Open */
  253. #define KEY_PASTE        135    /* AC Paste */
  254. #define KEY_FIND        136    /* AC Search */
  255. #define KEY_CUT            137    /* AC Cut */
  256. #define KEY_HELP        138    /* AL Integrated Help Center */
  257. #define KEY_MENU        139    /* Menu (show menu) */
  258. #define KEY_CALC        140    /* AL Calculator */
  259. #define KEY_SETUP        141
  260. #define KEY_SLEEP        142    /* SC System Sleep */
  261. #define KEY_WAKEUP        143    /* System Wake Up */
  262. #define KEY_FILE        144    /* AL Local Machine Browser */
  263. #define KEY_SENDFILE        145
  264. #define KEY_DELETEFILE        146
  265. #define KEY_XFER        147
  266. #define KEY_PROG1        148
  267. #define KEY_PROG2        149
  268. #define KEY_WWW            150    /* AL Internet Browser */
  269. #define KEY_MSDOS        151
  270. #define KEY_COFFEE        152    /* AL Terminal Lock/Screensaver */
  271. #define KEY_SCREENLOCK        KEY_COFFEE
  272. #define KEY_DIRECTION        153
  273. #define KEY_CYCLEWINDOWS    154
  274. #define KEY_MAIL        155
  275. #define KEY_BOOKMARKS        156    /* AC Bookmarks */
  276. #define KEY_COMPUTER        157
  277. #define KEY_BACK        158    /* AC Back */
  278. #define KEY_FORWARD        159    /* AC Forward */
  279. #define KEY_CLOSECD        160
  280. #define KEY_EJECTCD        161
  281. #define KEY_EJECTCLOSECD    162
  282. #define KEY_NEXTSONG        163
  283. #define KEY_PLAYPAUSE        164
  284. #define KEY_PREVIOUSSONG    165
  285. #define KEY_STOPCD        166
  286. #define KEY_RECORD        167
  287. #define KEY_REWIND        168
  288. #define KEY_PHONE        169    /* Media Select Telephone */
  289. #define KEY_ISO            170
  290. #define KEY_CONFIG        171    /* AL Consumer Control Configuration */
  291. #define KEY_HOMEPAGE        172    /* AC Home */
  292. #define KEY_REFRESH        173    /* AC Refresh */
  293. #define KEY_EXIT        174    /* AC Exit */
  294. #define KEY_MOVE        175
  295. #define KEY_EDIT        176
  296. #define KEY_SCROLLUP        177
  297. #define KEY_SCROLLDOWN        178
  298. #define KEY_KPLEFTPAREN        179
  299. #define KEY_KPRIGHTPAREN    180
  300. #define KEY_NEW            181    /* AC New */
  301. #define KEY_REDO        182    /* AC Redo/Repeat */
  302.  
  303. #define KEY_F13            183
  304. #define KEY_F14            184
  305. #define KEY_F15            185
  306. #define KEY_F16            186
  307. #define KEY_F17            187
  308. #define KEY_F18            188
  309. #define KEY_F19            189
  310. #define KEY_F20            190
  311. #define KEY_F21            191
  312. #define KEY_F22            192
  313. #define KEY_F23            193
  314. #define KEY_F24            194
  315.  
  316. #define KEY_PLAYCD        200
  317. #define KEY_PAUSECD        201
  318. #define KEY_PROG3        202
  319. #define KEY_PROG4        203
  320. #define KEY_SUSPEND        205
  321. #define KEY_CLOSE        206    /* AC Close */
  322. #define KEY_PLAY        207
  323. #define KEY_FASTFORWARD        208
  324. #define KEY_BASSBOOST        209
  325. #define KEY_PRINT        210    /* AC Print */
  326. #define KEY_HP            211
  327. #define KEY_CAMERA        212
  328. #define KEY_SOUND        213
  329. #define KEY_QUESTION        214
  330. #define KEY_EMAIL        215
  331. #define KEY_CHAT        216
  332. #define KEY_SEARCH        217
  333. #define KEY_CONNECT        218
  334. #define KEY_FINANCE        219    /* AL Checkbook/Finance */
  335. #define KEY_SPORT        220
  336. #define KEY_SHOP        221
  337. #define KEY_ALTERASE        222
  338. #define KEY_CANCEL        223    /* AC Cancel */
  339. #define KEY_BRIGHTNESSDOWN    224
  340. #define KEY_BRIGHTNESSUP    225
  341. #define KEY_MEDIA        226
  342.  
  343. #define KEY_SWITCHVIDEOMODE    227    /* Cycle between available video
  344.                        outputs (Monitor/LCD/TV-out/etc) */
  345. #define KEY_KBDILLUMTOGGLE    228
  346. #define KEY_KBDILLUMDOWN    229
  347. #define KEY_KBDILLUMUP        230
  348.  
  349. #define KEY_SEND        231    /* AC Send */
  350. #define KEY_REPLY        232    /* AC Reply */
  351. #define KEY_FORWARDMAIL        233    /* AC Forward Msg */
  352. #define KEY_SAVE        234    /* AC Save */
  353. #define KEY_DOCUMENTS        235
  354.  
  355. #define KEY_BATTERY        236
  356.  
  357. #define KEY_BLUETOOTH        237
  358. #define KEY_WLAN        238
  359. #define KEY_UWB            239
  360.  
  361. #define KEY_UNKNOWN        240
  362.  
  363. #define KEY_VIDEO_NEXT        241    /* drive next video source */
  364. #define KEY_VIDEO_PREV        242    /* drive previous video source */
  365. #define KEY_BRIGHTNESS_CYCLE    243    /* brightness up, after max is min */
  366. #define KEY_BRIGHTNESS_ZERO    244    /* brightness off, use ambient */
  367. #define KEY_DISPLAY_OFF        245    /* display device to off state */
  368.  
  369. #define KEY_WIMAX        246
  370.  
  371. /* Range 248 - 255 is reserved for special needs of AT keyboard driver */
  372.  
  373. #define BTN_MISC        0x100
  374. #define BTN_0            0x100
  375. #define BTN_1            0x101
  376. #define BTN_2            0x102
  377. #define BTN_3            0x103
  378. #define BTN_4            0x104
  379. #define BTN_5            0x105
  380. #define BTN_6            0x106
  381. #define BTN_7            0x107
  382. #define BTN_8            0x108
  383. #define BTN_9            0x109
  384.  
  385. #define BTN_MOUSE        0x110
  386. #define BTN_LEFT        0x110
  387. #define BTN_RIGHT        0x111
  388. #define BTN_MIDDLE        0x112
  389. #define BTN_SIDE        0x113
  390. #define BTN_EXTRA        0x114
  391. #define BTN_FORWARD        0x115
  392. #define BTN_BACK        0x116
  393. #define BTN_TASK        0x117
  394.  
  395. #define BTN_JOYSTICK        0x120
  396. #define BTN_TRIGGER        0x120
  397. #define BTN_THUMB        0x121
  398. #define BTN_THUMB2        0x122
  399. #define BTN_TOP            0x123
  400. #define BTN_TOP2        0x124
  401. #define BTN_PINKIE        0x125
  402. #define BTN_BASE        0x126
  403. #define BTN_BASE2        0x127
  404. #define BTN_BASE3        0x128
  405. #define BTN_BASE4        0x129
  406. #define BTN_BASE5        0x12a
  407. #define BTN_BASE6        0x12b
  408. #define BTN_DEAD        0x12f
  409.  
  410. #define BTN_GAMEPAD        0x130
  411. #define BTN_A            0x130
  412. #define BTN_B            0x131
  413. #define BTN_C            0x132
  414. #define BTN_X            0x133
  415. #define BTN_Y            0x134
  416. #define BTN_Z            0x135
  417. #define BTN_TL            0x136
  418. #define BTN_TR            0x137
  419. #define BTN_TL2            0x138
  420. #define BTN_TR2            0x139
  421. #define BTN_SELECT        0x13a
  422. #define BTN_START        0x13b
  423. #define BTN_MODE        0x13c
  424. #define BTN_THUMBL        0x13d
  425. #define BTN_THUMBR        0x13e
  426.  
  427. #define BTN_DIGI        0x140
  428. #define BTN_TOOL_PEN        0x140
  429. #define BTN_TOOL_RUBBER        0x141
  430. #define BTN_TOOL_BRUSH        0x142
  431. #define BTN_TOOL_PENCIL        0x143
  432. #define BTN_TOOL_AIRBRUSH    0x144
  433. #define BTN_TOOL_FINGER        0x145
  434. #define BTN_TOOL_MOUSE        0x146
  435. #define BTN_TOOL_LENS        0x147
  436. #define BTN_TOUCH        0x14a
  437. #define BTN_STYLUS        0x14b
  438. #define BTN_STYLUS2        0x14c
  439. #define BTN_TOOL_DOUBLETAP    0x14d
  440. #define BTN_TOOL_TRIPLETAP    0x14e
  441.  
  442. #define BTN_WHEEL        0x150
  443. #define BTN_GEAR_DOWN        0x150
  444. #define BTN_GEAR_UP        0x151
  445.  
  446. #define KEY_OK            0x160
  447. #define KEY_SELECT        0x161
  448. #define KEY_GOTO        0x162
  449. #define KEY_CLEAR        0x163
  450. #define KEY_POWER2        0x164
  451. #define KEY_OPTION        0x165
  452. #define KEY_INFO        0x166    /* AL OEM Features/Tips/Tutorial */
  453. #define KEY_TIME        0x167
  454. #define KEY_VENDOR        0x168
  455. #define KEY_ARCHIVE        0x169
  456. #define KEY_PROGRAM        0x16a    /* Media Select Program Guide */
  457. #define KEY_CHANNEL        0x16b
  458. #define KEY_FAVORITES        0x16c
  459. #define KEY_EPG            0x16d
  460. #define KEY_PVR            0x16e    /* Media Select Home */
  461. #define KEY_MHP            0x16f
  462. #define KEY_LANGUAGE        0x170
  463. #define KEY_TITLE        0x171
  464. #define KEY_SUBTITLE        0x172
  465. #define KEY_ANGLE        0x173
  466. #define KEY_ZOOM        0x174
  467. #define KEY_MODE        0x175
  468. #define KEY_KEYBOARD        0x176
  469. #define KEY_SCREEN        0x177
  470. #define KEY_PC            0x178    /* Media Select Computer */
  471. #define KEY_TV            0x179    /* Media Select TV */
  472. #define KEY_TV2            0x17a    /* Media Select Cable */
  473. #define KEY_VCR            0x17b    /* Media Select VCR */
  474. #define KEY_VCR2        0x17c    /* VCR Plus */
  475. #define KEY_SAT            0x17d    /* Media Select Satellite */
  476. #define KEY_SAT2        0x17e
  477. #define KEY_CD            0x17f    /* Media Select CD */
  478. #define KEY_TAPE        0x180    /* Media Select Tape */
  479. #define KEY_RADIO        0x181
  480. #define KEY_TUNER        0x182    /* Media Select Tuner */
  481. #define KEY_PLAYER        0x183
  482. #define KEY_TEXT        0x184
  483. #define KEY_DVD            0x185    /* Media Select DVD */
  484. #define KEY_AUX            0x186
  485. #define KEY_MP3            0x187
  486. #define KEY_AUDIO        0x188
  487. #define KEY_VIDEO        0x189
  488. #define KEY_DIRECTORY        0x18a
  489. #define KEY_LIST        0x18b
  490. #define KEY_MEMO        0x18c    /* Media Select Messages */
  491. #define KEY_CALENDAR        0x18d
  492. #define KEY_RED            0x18e
  493. #define KEY_GREEN        0x18f
  494. #define KEY_YELLOW        0x190
  495. #define KEY_BLUE        0x191
  496. #define KEY_CHANNELUP        0x192    /* Channel Increment */
  497. #define KEY_CHANNELDOWN        0x193    /* Channel Decrement */
  498. #define KEY_FIRST        0x194
  499. #define KEY_LAST        0x195    /* Recall Last */
  500. #define KEY_AB            0x196
  501. #define KEY_NEXT        0x197
  502. #define KEY_RESTART        0x198
  503. #define KEY_SLOW        0x199
  504. #define KEY_SHUFFLE        0x19a
  505. #define KEY_BREAK        0x19b
  506. #define KEY_PREVIOUS        0x19c
  507. #define KEY_DIGITS        0x19d
  508. #define KEY_TEEN        0x19e
  509. #define KEY_TWEN        0x19f
  510. #define KEY_VIDEOPHONE        0x1a0    /* Media Select Video Phone */
  511. #define KEY_GAMES        0x1a1    /* Media Select Games */
  512. #define KEY_ZOOMIN        0x1a2    /* AC Zoom In */
  513. #define KEY_ZOOMOUT        0x1a3    /* AC Zoom Out */
  514. #define KEY_ZOOMRESET        0x1a4    /* AC Zoom */
  515. #define KEY_WORDPROCESSOR    0x1a5    /* AL Word Processor */
  516. #define KEY_EDITOR        0x1a6    /* AL Text Editor */
  517. #define KEY_SPREADSHEET        0x1a7    /* AL Spreadsheet */
  518. #define KEY_GRAPHICSEDITOR    0x1a8    /* AL Graphics Editor */
  519. #define KEY_PRESENTATION    0x1a9    /* AL Presentation App */
  520. #define KEY_DATABASE        0x1aa    /* AL Database App */
  521. #define KEY_NEWS        0x1ab    /* AL Newsreader */
  522. #define KEY_VOICEMAIL        0x1ac    /* AL Voicemail */
  523. #define KEY_ADDRESSBOOK        0x1ad    /* AL Contacts/Address Book */
  524. #define KEY_MESSENGER        0x1ae    /* AL Instant Messaging */
  525. #define KEY_DISPLAYTOGGLE    0x1af    /* Turn display (LCD) on and off */
  526. #define KEY_SPELLCHECK        0x1b0   /* AL Spell Check */
  527. #define KEY_LOGOFF        0x1b1   /* AL Logoff */
  528.  
  529. #define KEY_DOLLAR        0x1b2
  530. #define KEY_EURO        0x1b3
  531.  
  532. #define KEY_FRAMEBACK        0x1b4    /* Consumer - transport controls */
  533. #define KEY_FRAMEFORWARD    0x1b5
  534. #define KEY_CONTEXT_MENU    0x1b6    /* GenDesc - system context menu */
  535. #define KEY_MEDIA_REPEAT    0x1b7    /* Consumer - transport control */
  536.  
  537. #define KEY_DEL_EOL        0x1c0
  538. #define KEY_DEL_EOS        0x1c1
  539. #define KEY_INS_LINE        0x1c2
  540. #define KEY_DEL_LINE        0x1c3
  541.  
  542. #define KEY_FN            0x1d0
  543. #define KEY_FN_ESC        0x1d1
  544. #define KEY_FN_F1        0x1d2
  545. #define KEY_FN_F2        0x1d3
  546. #define KEY_FN_F3        0x1d4
  547. #define KEY_FN_F4        0x1d5
  548. #define KEY_FN_F5        0x1d6
  549. #define KEY_FN_F6        0x1d7
  550. #define KEY_FN_F7        0x1d8
  551. #define KEY_FN_F8        0x1d9
  552. #define KEY_FN_F9        0x1da
  553. #define KEY_FN_F10        0x1db
  554. #define KEY_FN_F11        0x1dc
  555. #define KEY_FN_F12        0x1dd
  556. #define KEY_FN_1        0x1de
  557. #define KEY_FN_2        0x1df
  558. #define KEY_FN_D        0x1e0
  559. #define KEY_FN_E        0x1e1
  560. #define KEY_FN_F        0x1e2
  561. #define KEY_FN_S        0x1e3
  562. #define KEY_FN_B        0x1e4
  563.  
  564. #define KEY_BRL_DOT1        0x1f1
  565. #define KEY_BRL_DOT2        0x1f2
  566. #define KEY_BRL_DOT3        0x1f3
  567. #define KEY_BRL_DOT4        0x1f4
  568. #define KEY_BRL_DOT5        0x1f5
  569. #define KEY_BRL_DOT6        0x1f6
  570. #define KEY_BRL_DOT7        0x1f7
  571. #define KEY_BRL_DOT8        0x1f8
  572. #define KEY_BRL_DOT9        0x1f9
  573. #define KEY_BRL_DOT10        0x1fa
  574.  
  575. /* We avoid low common keys in module aliases so they don't get huge. */
  576. #define KEY_MIN_INTERESTING    KEY_MUTE
  577. #define KEY_MAX            0x1ff
  578. #define KEY_CNT            (KEY_MAX+1)
  579.  
  580. /*
  581.  * Relative axes
  582.  */
  583.  
  584. #define REL_X            0x00
  585. #define REL_Y            0x01
  586. #define REL_Z            0x02
  587. #define REL_RX            0x03
  588. #define REL_RY            0x04
  589. #define REL_RZ            0x05
  590. #define REL_HWHEEL        0x06
  591. #define REL_DIAL        0x07
  592. #define REL_WHEEL        0x08
  593. #define REL_MISC        0x09
  594. #define REL_MAX            0x0f
  595. #define REL_CNT            (REL_MAX+1)
  596.  
  597. /*
  598.  * Absolute axes
  599.  */
  600.  
  601. #define ABS_X            0x00
  602. #define ABS_Y            0x01
  603. #define ABS_Z            0x02
  604. #define ABS_RX            0x03
  605. #define ABS_RY            0x04
  606. #define ABS_RZ            0x05
  607. #define ABS_THROTTLE        0x06
  608. #define ABS_RUDDER        0x07
  609. #define ABS_WHEEL        0x08
  610. #define ABS_GAS            0x09
  611. #define ABS_BRAKE        0x0a
  612. #define ABS_HAT0X        0x10
  613. #define ABS_HAT0Y        0x11
  614. #define ABS_HAT1X        0x12
  615. #define ABS_HAT1Y        0x13
  616. #define ABS_HAT2X        0x14
  617. #define ABS_HAT2Y        0x15
  618. #define ABS_HAT3X        0x16
  619. #define ABS_HAT3Y        0x17
  620. #define ABS_PRESSURE        0x18
  621. #define ABS_DISTANCE        0x19
  622. #define ABS_TILT_X        0x1a
  623. #define ABS_TILT_Y        0x1b
  624. #define ABS_TOOL_WIDTH        0x1c
  625. #define ABS_VOLUME        0x20
  626. #define ABS_MISC        0x28
  627. #define ABS_MAX            0x3f
  628. #define ABS_CNT            (ABS_MAX+1)
  629.  
  630. /*
  631.  * Switch events
  632.  */
  633.  
  634. #define SW_LID            0x00  /* set = lid shut */
  635. #define SW_TABLET_MODE        0x01  /* set = tablet mode */
  636. #define SW_HEADPHONE_INSERT    0x02  /* set = inserted */
  637. #define SW_RFKILL_ALL        0x03  /* rfkill master switch, type "any"
  638.                      set = radio enabled */
  639. #define SW_RADIO        SW_RFKILL_ALL    /* deprecated */
  640. #define SW_MICROPHONE_INSERT    0x04  /* set = inserted */
  641. #define SW_DOCK            0x05  /* set = plugged into dock */
  642. #define SW_MAX            0x0f
  643. #define SW_CNT            (SW_MAX+1)
  644.  
  645. /*
  646.  * Misc events
  647.  */
  648.  
  649. #define MSC_SERIAL        0x00
  650. #define MSC_PULSELED        0x01
  651. #define MSC_GESTURE        0x02
  652. #define MSC_RAW            0x03
  653. #define MSC_SCAN        0x04
  654. #define MSC_MAX            0x07
  655. #define MSC_CNT            (MSC_MAX+1)
  656.  
  657. /*
  658.  * LEDs
  659.  */
  660.  
  661. #define LED_NUML        0x00
  662. #define LED_CAPSL        0x01
  663. #define LED_SCROLLL        0x02
  664. #define LED_COMPOSE        0x03
  665. #define LED_KANA        0x04
  666. #define LED_SLEEP        0x05
  667. #define LED_SUSPEND        0x06
  668. #define LED_MUTE        0x07
  669. #define LED_MISC        0x08
  670. #define LED_MAIL        0x09
  671. #define LED_CHARGING        0x0a
  672. #define LED_MAX            0x0f
  673. #define LED_CNT            (LED_MAX+1)
  674.  
  675. /*
  676.  * Autorepeat values
  677.  */
  678.  
  679. #define REP_DELAY        0x00
  680. #define REP_PERIOD        0x01
  681. #define REP_MAX            0x01
  682.  
  683. /*
  684.  * Sounds
  685.  */
  686.  
  687. #define SND_CLICK        0x00
  688. #define SND_BELL        0x01
  689. #define SND_TONE        0x02
  690. #define SND_MAX            0x07
  691. #define SND_CNT            (SND_MAX+1)
  692.  
  693. /*
  694.  * IDs.
  695.  */
  696.  
  697. #define ID_BUS            0
  698. #define ID_VENDOR        1
  699. #define ID_PRODUCT        2
  700. #define ID_VERSION        3
  701.  
  702. #define BUS_PCI            0x01
  703. #define BUS_ISAPNP        0x02
  704. #define BUS_USB            0x03
  705. #define BUS_HIL            0x04
  706. #define BUS_BLUETOOTH        0x05
  707. #define BUS_VIRTUAL        0x06
  708.  
  709. #define BUS_ISA            0x10
  710. #define BUS_I8042        0x11
  711. #define BUS_XTKBD        0x12
  712. #define BUS_RS232        0x13
  713. #define BUS_GAMEPORT        0x14
  714. #define BUS_PARPORT        0x15
  715. #define BUS_AMIGA        0x16
  716. #define BUS_ADB            0x17
  717. #define BUS_I2C            0x18
  718. #define BUS_HOST        0x19
  719. #define BUS_GSC            0x1A
  720. #define BUS_ATARI        0x1B
  721.  
  722. /*
  723.  * Values describing the status of a force-feedback effect
  724.  */
  725. #define FF_STATUS_STOPPED    0x00
  726. #define FF_STATUS_PLAYING    0x01
  727. #define FF_STATUS_MAX        0x01
  728.  
  729. /*
  730.  * Structures used in ioctls to upload effects to a device
  731.  * They are pieces of a bigger structure (called ff_effect)
  732.  */
  733.  
  734. /*
  735.  * All duration values are expressed in ms. Values above 32767 ms (0x7fff)
  736.  * should not be used and have unspecified results.
  737.  */
  738.  
  739. /**
  740.  * struct ff_replay - defines scheduling of the force-feedback effect
  741.  * @length: duration of the effect
  742.  * @delay: delay before effect should start playing
  743.  */
  744. struct ff_replay {
  745.     __u16 length;
  746.     __u16 delay;
  747. };
  748.  
  749. /**
  750.  * struct ff_trigger - defines what triggers the force-feedback effect
  751.  * @button: number of the button triggering the effect
  752.  * @interval: controls how soon the effect can be re-triggered
  753.  */
  754. struct ff_trigger {
  755.     __u16 button;
  756.     __u16 interval;
  757. };
  758.  
  759. /**
  760.  * struct ff_envelope - generic force-feedback effect envelope
  761.  * @attack_length: duration of the attack (ms)
  762.  * @attack_level: level at the beginning of the attack
  763.  * @fade_length: duration of fade (ms)
  764.  * @fade_level: level at the end of fade
  765.  *
  766.  * The @attack_level and @fade_level are absolute values; when applying
  767.  * envelope force-feedback core will convert to positive/negative
  768.  * value based on polarity of the default level of the effect.
  769.  * Valid range for the attack and fade levels is 0x0000 - 0x7fff
  770.  */
  771. struct ff_envelope {
  772.     __u16 attack_length;
  773.     __u16 attack_level;
  774.     __u16 fade_length;
  775.     __u16 fade_level;
  776. };
  777.  
  778. /**
  779.  * struct ff_constant_effect - defines parameters of a constant force-feedback effect
  780.  * @level: strength of the effect; may be negative
  781.  * @envelope: envelope data
  782.  */
  783. struct ff_constant_effect {
  784.     __s16 level;
  785.     struct ff_envelope envelope;
  786. };
  787.  
  788. /**
  789.  * struct ff_ramp_effect - defines parameters of a ramp force-feedback effect
  790.  * @start_level: beginning strength of the effect; may be negative
  791.  * @end_level: final strength of the effect; may be negative
  792.  * @envelope: envelope data
  793.  */
  794. struct ff_ramp_effect {
  795.     __s16 start_level;
  796.     __s16 end_level;
  797.     struct ff_envelope envelope;
  798. };
  799.  
  800. /**
  801.  * struct ff_condition_effect - defines a spring or friction force-feedback effect
  802.  * @right_saturation: maximum level when joystick moved all way to the right
  803.  * @left_saturation: same for the left side
  804.  * @right_coeff: controls how fast the force grows when the joystick moves
  805.  *    to the right
  806.  * @left_coeff: same for the left side
  807.  * @deadband: size of the dead zone, where no force is produced
  808.  * @center: position of the dead zone
  809.  */
  810. struct ff_condition_effect {
  811.     __u16 right_saturation;
  812.     __u16 left_saturation;
  813.  
  814.     __s16 right_coeff;
  815.     __s16 left_coeff;
  816.  
  817.     __u16 deadband;
  818.     __s16 center;
  819. };
  820.  
  821. /**
  822.  * struct ff_periodic_effect - defines parameters of a periodic force-feedback effect
  823.  * @waveform: kind of the effect (wave)
  824.  * @period: period of the wave (ms)
  825.  * @magnitude: peak value
  826.  * @offset: mean value of the wave (roughly)
  827.  * @phase: 'horizontal' shift
  828.  * @envelope: envelope data
  829.  * @custom_len: number of samples (FF_CUSTOM only)
  830.  * @custom_data: buffer of samples (FF_CUSTOM only)
  831.  *
  832.  * Known waveforms - FF_SQUARE, FF_TRIANGLE, FF_SINE, FF_SAW_UP,
  833.  * FF_SAW_DOWN, FF_CUSTOM. The exact syntax FF_CUSTOM is undefined
  834.  * for the time being as no driver supports it yet.
  835.  *
  836.  * Note: the data pointed by custom_data is copied by the driver.
  837.  * You can therefore dispose of the memory after the upload/update.
  838.  */
  839. struct ff_periodic_effect {
  840.     __u16 waveform;
  841.     __u16 period;
  842.     __s16 magnitude;
  843.     __s16 offset;
  844.     __u16 phase;
  845.  
  846.     struct ff_envelope envelope;
  847.  
  848.     __u32 custom_len;
  849.     __s16 *custom_data;
  850. };
  851.  
  852. /**
  853.  * struct ff_rumble_effect - defines parameters of a periodic force-feedback effect
  854.  * @strong_magnitude: magnitude of the heavy motor
  855.  * @weak_magnitude: magnitude of the light one
  856.  *
  857.  * Some rumble pads have two motors of different weight. Strong_magnitude
  858.  * represents the magnitude of the vibration generated by the heavy one.
  859.  */
  860. struct ff_rumble_effect {
  861.     __u16 strong_magnitude;
  862.     __u16 weak_magnitude;
  863. };
  864.  
  865. /**
  866.  * struct ff_effect - defines force feedback effect
  867.  * @type: type of the effect (FF_CONSTANT, FF_PERIODIC, FF_RAMP, FF_SPRING,
  868.  *    FF_FRICTION, FF_DAMPER, FF_RUMBLE, FF_INERTIA, or FF_CUSTOM)
  869.  * @id: an unique id assigned to an effect
  870.  * @direction: direction of the effect
  871.  * @trigger: trigger conditions (struct ff_trigger)
  872.  * @replay: scheduling of the effect (struct ff_replay)
  873.  * @u: effect-specific structure (one of ff_constant_effect, ff_ramp_effect,
  874.  *    ff_periodic_effect, ff_condition_effect, ff_rumble_effect) further
  875.  *    defining effect parameters
  876.  *
  877.  * This structure is sent through ioctl from the application to the driver.
  878.  * To create a new effect application should set its @id to -1; the kernel
  879.  * will return assigned @id which can later be used to update or delete
  880.  * this effect.
  881.  *
  882.  * Direction of the effect is encoded as follows:
  883.  *    0 deg -> 0x0000 (down)
  884.  *    90 deg -> 0x4000 (left)
  885.  *    180 deg -> 0x8000 (up)
  886.  *    270 deg -> 0xC000 (right)
  887.  */
  888. struct ff_effect {
  889.     __u16 type;
  890.     __s16 id;
  891.     __u16 direction;
  892.     struct ff_trigger trigger;
  893.     struct ff_replay replay;
  894.  
  895.     union {
  896.         struct ff_constant_effect constant;
  897.         struct ff_ramp_effect ramp;
  898.         struct ff_periodic_effect periodic;
  899.         struct ff_condition_effect condition[2]; /* One for each axis */
  900.         struct ff_rumble_effect rumble;
  901.     } u;
  902. };
  903.  
  904. /*
  905.  * Force feedback effect types
  906.  */
  907.  
  908. #define FF_RUMBLE    0x50
  909. #define FF_PERIODIC    0x51
  910. #define FF_CONSTANT    0x52
  911. #define FF_SPRING    0x53
  912. #define FF_FRICTION    0x54
  913. #define FF_DAMPER    0x55
  914. #define FF_INERTIA    0x56
  915. #define FF_RAMP        0x57
  916.  
  917. #define FF_EFFECT_MIN    FF_RUMBLE
  918. #define FF_EFFECT_MAX    FF_RAMP
  919.  
  920. /*
  921.  * Force feedback periodic effect types
  922.  */
  923.  
  924. #define FF_SQUARE    0x58
  925. #define FF_TRIANGLE    0x59
  926. #define FF_SINE        0x5a
  927. #define FF_SAW_UP    0x5b
  928. #define FF_SAW_DOWN    0x5c
  929. #define FF_CUSTOM    0x5d
  930.  
  931. #define FF_WAVEFORM_MIN    FF_SQUARE
  932. #define FF_WAVEFORM_MAX    FF_CUSTOM
  933.  
  934. /*
  935.  * Set ff device properties
  936.  */
  937.  
  938. #define FF_GAIN        0x60
  939. #define FF_AUTOCENTER    0x61
  940.  
  941. #define FF_MAX        0x7f
  942. #define FF_CNT        (FF_MAX+1)
  943.  
  944. #endif
  945.